fix(formfield): rename duplicate FormEmits type to FormFieldEmits#8421
Open
YevheniiKotyrlo wants to merge 1 commit intoprimefaces:masterfrom
Open
fix(formfield): rename duplicate FormEmits type to FormFieldEmits#8421YevheniiKotyrlo wants to merge 1 commit intoprimefaces:masterfrom
YevheniiKotyrlo wants to merge 1 commit intoprimefaces:masterfrom
Conversation
72029d1 to
cd97caa
Compare
cd97caa to
726b3b1
Compare
Author
|
Hi — just checking in on this PR and the related type fixes. Is there anything else needed from my side? I have 4 open PRs that all address
All are type-only changes (no runtime impact), each is independent and can be merged separately, and all are rebased on latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Defect Fixes
Fixes #8420
@primevue/formsexportsFormEmitsfrom both the Form and FormField modules. When a project usesskipLibCheck: false, TypeScript reports TS2308 — a duplicate export collision that prevents clean type-checking of@primevue/forms.Problem
FormField.d.tswas copied fromForm.d.tsand the type name wasn't updated during copy-paste. TheFormFieldEmitsOptionsinterface is already correctly named — only the type alias andDefineComponentdeclarations were missed.Changes
FormEmits→FormFieldEmitsinformfield/FormField.d.ts(type alias + 2DefineComponentusages)Follows the existing
[ComponentName]Emitsnaming convention used by all 100+ PrimeVue components (ButtonEmits,AccordionEmits,TreeSelectEmits, etc.).Scope / Impact
FormEmitsfrom FormField was unusable due to the collision anywayskipLibCheck: falseVerification
tsc --noEmitinpackages/forms/[ComponentName]Emits